*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }
    
    .container {
        max-width: 1140px;
        margin: 0 auto;
    }
    
    nav {
        padding: 1rem;
        background-color: #333;
    }
    
    .nav-con {
        display: flex;
        justify-content: space-between;
    }
    
    .logo a{
        font-size: 2rem;
        color: #fff;
        text-decoration: none;
    }
    
    .menu {
        display: flex;
        list-style: none;
        align-items: center;
    }
    
    .menu li{
    margin: 01rem;
    }
    
    .menu li a{
    color: #fff;
    text-decoration: none;
    }
    
    .hero {
        background-color: #f0f0f0
    }
    
    .hero-con{
        display: flex;
    }
    
    .hero-info{
        width: 100%;
        padding: 2rem;
    }
    
    .hero-info h3{
        font-size: 2rem;
    }
    
    .hero-info p{
        margin: 1rem 0;
    }
    
    input[type=text], select, textarea {
        width: 100%; /* Full width */
        padding: 12px; /* Some padding */ 
        border: 1px solid #ccc; /* Gray border */
        border-radius: 4px; /* Rounded borders */
        box-sizing: border-box; /* Make sure that padding and width stays in place */
        margin-top: 6px; /* Add a top margin */
        margin-bottom: 16px; /* Bottom margin */
        resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
      }

/* Style the submit button with a specific background color etc */
input[type=submit] {
    background-color: orange;
    color: #fff;
    padding: 15.5px 22px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

    .hero-info .hero-btn{
        display: inline-block;
        background-color: orange;
        color: #fff;
        text-decoration: none;
        padding: 15px 22px;
        border-radius: 5px;
    }
    
    .hero-text{
        width: 100%;
        padding: 2rem;
        font-size: 2rem;
    }
    
    .hero-text h4{
        font-size: 1.5rem;
    }

    .hero-text p{
        font-size: 1rem;
    }
    

    
    .footer-top{
        margin-top: 2rem;
        padding: 3rem;
        background-color: #333;
        color: #fff;
    }
    
    .footer-top-con{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        column-gap: 2rem;
    }
    
    .footer-top-item-con{
        display: flex;
        margin: 1rem 0;
    }
    
    .footer-top-item-con .date{
        background-color:#f0f0f0;
        color:#333;
        padding: 0.5rem;
        border-radius: 5px;
        text-align: center;
        margin-right: 10px;
    }
    
    .footer-top-item:nth-child(2) h4{
        margin-bottom: 1rem;
    }
    
    .footer-top-item:nth-child(3) h4{
        margin-bottom: 1rem;
    }
    
    .footer-top-item img{
        width: 2rem;
        margin-right: 10px;
    }
    
    .footer-bottom{
        background-color: #f0f0f0;
        padding: 1rem;
        text-align: center;
    }